[SQL] Full-text search CONTAINSTABLE
Posted
by Alexander Vanwynsberghe
on Stack Overflow
See other posts from Stack Overflow
or by Alexander Vanwynsberghe
Published on 2009-07-14T14:37:49Z
Indexed on
2010/04/07
5:03 UTC
Read the original article
Hit count: 571
Hello,
I have a question regarding a CONTAINSTABLE function. I would like to find everything that ENDS WITH the search string.
I can use the * to find everything that starts with the searchvalue, but I want an equivalent for the % sign in the SQL LIKE function.
What I want: find everything that ends with 123, so as searchvalue, I could use "*123" in my CONTAINSTABLE function. But that doesn't work..
If I want all results starting with 123, I use "123*", and that works well.
But what's the equivalent for --> LIKE %123 ?? it isn't "*123" in the CONTAINSTABLE function. What is it then?
Thanks!
© Stack Overflow or respective owner